Drop another unused script
authorMatthias Clasen <mclasen@redhat.com>
Thu, 4 Sep 2014 04:24:00 +0000 (00:24 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Thu, 4 Sep 2014 04:24:00 +0000 (00:24 -0400)
The check engine abi script was never used in our build, and
with engines being on the way out, lets drop this.

gtk-engine-check-abi.sh [deleted file]

diff --git a/gtk-engine-check-abi.sh b/gtk-engine-check-abi.sh
deleted file mode 100755 (executable)
index 5cade63..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-#! /bin/sh
-
-# Check that a theme engine does not export any 
-# functions that may interfere with symbol resolution
-
-cat >expected-abi <<EOF
-theme_create_rc_style
-theme_exit
-theme_init
-EOF
-
-cat >optional-abi <<EOF
-__bss_start
-_edata
-_end
-_fini
-_init
-g_module_check_init
-g_module_unload
-EOF
-
-nm -D -g --defined-only $1 | cut -d ' ' -f 3 > actual-abi
-
-cat optional-abi >>expected-abi
-sort expected-abi | uniq >expected-abi2
-
-cat optional-abi >>actual-abi
-sort actual-abi | uniq >actual-abi2
-
-diff -u expected-abi2 actual-abi2 && rm expected-abi optional-abi actual-abi expected-abi2 actual-abi2